/*
 * Globals
 */

/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 15px gray;
  border-radius: 15px;
}

/* handle */
::-webkit-scrollbar-thumb {
  background: aquamarine;
  border-radius: 15px;
}

/* handle on handle */
::-webkit-scrollbar-thumb:hover {
  background: #00ffff;
}


html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}


/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: rgb(230, 73, 11);
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  background: blue;
  /* font-family: Arial, Helvetica, sans-serif; */
}

.cover-container {
  max-width: 42em;
}


/*
 * Header
 */

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}


/*For mobile phones */
[class*="col-"]
{
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* for tablets */
  .col-s-1 {width: 8.33% ;}
  .col-s-2 {width: 16.66% ;}
  .col-s-3 {width: 25% ;}
  .col-s-4 {width: 33.33% ;}

  .col-s-5 {width: 41.66% ;}
  .col-s-6 {width: 50% ;}
  .col-s-7 {width: 58.33% ;}
  .col-s-8 {width: 66.66% ;}

  .col-s-9 {width: 75% ;}
  .col-s-10 {width: 83.33% ;}
  .col-s-11 {width: 91.68% ;}
  .col-s-12 {width: 100% ;}
}

@media only screen and (min-width: 768px) {
  /* for tablets */
  .col-1 {width: 8.33% ;}
  .col-2 {width: 16.66% ;}
  .col-3 {width: 25% ;}
  .col-4 {width: 33.33% ;}

  .col-5 {width: 41.66% ;}
  .col-6 {width: 50% ;}
  .col-7 {width: 58.33% ;}
  .col-8 {width: 66.66% ;}

  .col-9 {width: 75% ;}
  .col-10 {width: 83.33% ;}
  .col-11 {width: 91.68% ;}
  .col-12 {width: 100% ;}
}
